home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Collection of Tools & Utilities
/
Collection of Tools and Utilities.iso
/
dskut
/
disktime.zip
/
BANNER.PAS
< prev
next >
Wrap
Pascal/Delphi Source File
|
1985-11-02
|
697b
|
36 lines
Procedure Banner;
{
This procedure prints the banner for the disk time program
Input None
Output None
Strategy (1) Clear the screen
(2) Print banner
}
Begin
ClrScr;
Writeln;
NormVideo;
Write(' My Utilities(tm)');
LowVideo;
Write(' by Ya''akov. ');
NormVideo;
Writeln('Copyright(c) 1985');
LowVideo;
Writeln;
Write('Measures average access time of ');
NormVideo;
Write('IBM-PC/XT');
LowVideo;
Write(' and ');
NormVideo;
Write('IBM-PC/AT');
LowVideo;
Writeln(' hard disk');
Writeln;
End;